home *** CD-ROM | disk | FTP | other *** search
/ Floppyshop 2 / Floppyshop - 2.zip / Floppyshop - 2.iso / diskmags / 0022-3.564 / dmg-3451 / data / ramload.dat < prev    next >
Text File  |  1987-04-21  |  2KB  |  58 lines

  1. STOS ram-disk loader.
  2. Wheee the fibble.
  3.  
  4.      This is just a little program to let we people with loads of 
  5. memory to squander, whether or not to load in the STOS ram-disk on 
  6. boot up (as it's a real pain if you don't want it).
  7.      To use it you'll have to copy the ram-disk program onto the 
  8. root directory of your STOS disk (not in the auto folder!). Then 
  9. copy the RAMLOAD.PRG into the auto folder.  Now you'll have to 
  10. make sure it's loaded first on boot-up. It's probably quickest to 
  11. just delete the basic206.prg in the auto folder and the copy the 
  12. one from the root directory back in again.
  13.      Now when you boot STOS you'll be asked whether or not to load 
  14. the ram disk, so press Y or N according to what you want to do...
  15.      Also, you could save this basic file onto your STOS disk root 
  16. directory called "autoexec.bas":
  17.  
  18. 10 on error goto 70
  19.  
  20.      Error trap in case of no ramdisk.
  21.  
  22. 20 drive=2
  23.  
  24.      "Spring  the trap"... If no ramdisk is installed, then it 
  25.      won't bother copying the compiler over to drive C. 
  26.      Incedently, does the compiler manual amention anything about 
  27.      copying the compiler over? I've lost mine, and I can't remember 
  28.      what it said about it...
  29.  
  30. 30 print "Copying COMPILER.ACB..."
  31.  
  32.      Be friendly, print up a nice message.
  33.  
  34. 40 open in #1,"a:\compiler.acb" : L=lof(#1) : close #1
  35.  
  36.      Get the length.
  37.  
  38. 50 reserve as work 10,L+256 : bload "a:\compiler.acb",10
  39.  
  40.      Load it in.
  41.  
  42. 60 bsave "c:\compiler.acb",start(10) to start(10)+L+128 : goto 80
  43.  
  44.      And save it out.
  45.  
  46. 70 resume 80
  47.  
  48.      If there was no ramdisk, then reset the error thing.
  49.  
  50. 80 drive=1 : put key "hexaoff:new`" : end 
  51.  
  52.      Go to drive B (if you have 2 drives anyway), turn off 
  53.      hexadecimal for the bank listings and new the program.
  54.  
  55. note from editor: Ram-disk means "soup's off" in the kitchens of 
  56. Hungaria.
  57.  
  58.